home *** CD-ROM | disk | FTP | other *** search
/ PC Elektro 3 / PC-Elektro-3-cd1.bin / KBan 2.0 / KBANSRC.LZH / SRC / PROG / KBAN.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-04-03  |  374 b   |  21 lines

  1. /*
  2.  * a header of the class CKBANApp
  3.  * Copyright (C) 1997 Kazutaka Hirata <khirata@jove.acs.unt.edu>
  4.  */
  5.  
  6. #ifndef _KBAN_H_
  7. #define _KBAN_H_
  8.  
  9. // stdafx.h should be included already.
  10.  
  11. class CKBANApp : public CWinApp
  12. {
  13. public:
  14.   virtual BOOL InitInstance(void);
  15. protected:
  16.   afx_msg void OnAppAbout(void);
  17.   DECLARE_MESSAGE_MAP()
  18. };
  19.  
  20. #endif /* _KBAN_H_ */
  21.